home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00316.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  595 b   |  29 lines

  1. on mouseUp
  2.   global EVis, EPup, FVis, FPup
  3.   if EVis = 1 then
  4.     puppetSprite(48, 1)
  5.     set the visible of sprite 48 to 1
  6.   else
  7.     puppetSprite(48, 1)
  8.     set the visible of sprite 48 to 0
  9.   end if
  10.   if FVis = 1 then
  11.     puppetSprite(45, 1)
  12.     set the visible of sprite 45 to 1
  13.   else
  14.     puppetSprite(45, 1)
  15.     set the visible of sprite 45 to 0
  16.   end if
  17.   if FPup = 1 then
  18.     set the puppet of sprite 45 to 1
  19.   else
  20.     set the puppet of sprite 45 to 0
  21.   end if
  22.   if EPup = 1 then
  23.     set the puppet of sprite 48 to 1
  24.   else
  25.     set the puppet of sprite 48 to 0
  26.   end if
  27.   play done
  28. end
  29.